home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00024_Banner.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.7 KB  |  220 lines

  1. --
  2. --Banner
  3. --
  4.  
  5. property ancestor
  6.  
  7. --sound banner properties
  8. property bannerSprite
  9. property bannerFieldCast
  10. property bannerCastList
  11. property delay
  12.  
  13. --these are the malleable properties of the banner
  14. property bannerSndCast
  15. property textHilite
  16.  
  17. global gPrinterB,gBannerartB,gLeftB,gSpeakerB,gHomeB,gHelpB,gRightB
  18.  
  19.  
  20. on new me
  21.   -- set constants:
  22.   
  23.   -- the sprite we will take over for animating
  24.   set bannerSprite = gSpeakerB
  25.   
  26.   -- the number of the field cast member we will be refreshing
  27.   set bannerFieldCast = "topBanner"
  28.   
  29.   -- the list of members we will be animating through
  30.   set bannerCastList = ["speaker,1", "speaker,2", "speaker,3"]
  31.   
  32.   -- the color we will hilite the text in the field to be
  33.   set textHilite = 134
  34.   
  35.   -- the delay between animated frames of the sound trumpet thingie
  36.   set delay = 7
  37.   
  38.   -- initialize the ancestor:
  39.   set ancestor = new (script "Dialog")
  40.   
  41.   -- do other initializations:
  42.   
  43.   return me
  44. end
  45.  
  46.  
  47. on destruct me
  48.   if objectP (ancestor) then destruct (ancestor)
  49.   set ancestor = 0
  50. end
  51.  
  52. --this will resolve the sprite number into a member number for a sound or an ID playback, and
  53. --play back the sound.
  54.  
  55. --command = "#prompt", or "#ID"
  56. on playSprite me, spr, command
  57.   -- get all the info about that sprite
  58.   -- just the number as it refers to that cast, not the absolute cast number
  59.   set theMember = the memberNum of sprite spr
  60.   
  61.   -- the lib so that we can look elsewhere
  62.   set theLib = the castlibNum of sprite spr
  63.   
  64.   -- the name of that lib
  65.   set theLibName = the name of castLib theLib
  66.   
  67.   if command = #prompt then
  68.     set targetLib = theLibName & " prompts"
  69.     
  70.     -- resolve this by name
  71.     -- NOTE* this needs to be a unique name because it will end up playing the 
  72.     -- first sound that is called rootname
  73.     
  74.     if the type of member theMember of castLib targetLib = #sound then
  75.       -- this sound must be called "...,prompt" because of the resolving routines in setupBanner
  76.       set rootName = item 1 of (the name of member theMember of castLib targetLib)
  77.       
  78.       -- do the banner
  79.       setUpBanner(me, rootName)
  80.     end if
  81.     
  82.   else
  83.     set targetLib = theLibName & " IDs"
  84.     
  85.     -- play back a sound
  86.     if the type of member theMember of castLib targetLib = #sound then
  87.       puppetSound member theMember of castLib targetLib
  88.       updateStage
  89.       
  90.       -- wait for the sound to finish
  91.       waitFXSound()
  92.     else
  93.       put "I could not find the ID sound"
  94.     end if
  95.     
  96.   end if  
  97. end
  98.  
  99.  
  100. -- key routine
  101.  
  102. on setupBanner me, newRootName, noPlay
  103.   -- this looks for a sound called newRootName & ",prompt"
  104.   -- and a text member called newRootName & ",txt"
  105.   -- it puts a ref to both into the properties for this object, and then 
  106.   -- loads them into the on stage members
  107.   
  108.   -- we save the refs to the members
  109.   set thisSound = the number of member (newRootName & ",prompt")
  110.   if thisSound > 0 then
  111.     set bannerSndCast = (newRootName & ",prompt") --thisSound
  112.   else
  113.     put "trouble finding sound cast member in the cast, " & newRootName & ",prompt is missing"
  114.   end if
  115.   
  116.   -- now we do the reference to the text cast
  117.   set thisText = the number of member (newRootName & ",txt")
  118.   if thisText > 0 then
  119.     set bannerTextCast = thisText
  120.     
  121.     debug the text of member bannerTextCast
  122.     -- now we are going to put the info on the stage
  123.     set the foreColor of member bannerFieldCast = 255
  124.     
  125.     put the text of member bannerTextCast into field bannerFieldCast
  126.     
  127.     -- now play the banner for the first time
  128.     if not noPlay then return playBanner(me)
  129.     else return 0
  130.     
  131.   else
  132.     put "trouble finding text cast member in the cast, " & newRootName & ",txt is missing"
  133.     return 0  
  134.   end if
  135. end
  136.  
  137.  
  138. -- this just plays back the current banner sound and text, while animating the sound icon
  139.  
  140. on playBanner me
  141.   unloadCast (me)
  142.   -- grab a hold of the necessary sprite
  143.   puppetSprite bannerSprite, TRUE
  144.   set oldMem = the memberNum of sprite bannerSprite
  145.   set oldLib = the castLibNum of sprite bannerSprite
  146.   
  147.   -- now go to it
  148.   if bannerSndCast > 0  then 
  149.     -- change the color of the text
  150.     set the foreColor of member bannerFieldCast = textHilite
  151.     
  152.     -- start it playing
  153.     puppetSound bannerSndCast, 1
  154.     updateStage
  155.     
  156.     
  157.     -- now just keep on animating
  158.     set iconPtr = 1
  159.     
  160.     set lastTime = the timer
  161.     
  162.     set oldCursor = the cursor of sprite the clickOn
  163.     set the cursor of sprite the clickOn to 0
  164.     updateStage
  165.     -- take away the cursor during animations
  166.     cursor 200
  167.     
  168.     -- now play back and animate at the same time
  169.     repeat while soundBusy(1)
  170.       
  171.       if the timer >= lastTime + delay then
  172.         -- change the speaker
  173.         -- put "updating icon..."
  174.         
  175.         set the castNum of sprite bannerSprite = the number of member (getAt(bannerCastList, iconPtr))
  176.         
  177.         set iconPtr = iconPtr + 1
  178.         
  179.         if iconPtr > count(bannerCastList) then
  180.           set iconPtr = 1
  181.         end if
  182.         
  183.         set lastTime = the timer
  184.       end if
  185.       set the cursor of sprite the clickOn to oldCursor
  186.       updateStage
  187.     end repeat
  188.     
  189.     -- we are done, now return stuff to normal
  190.     set the foreColor of member bannerFieldCast = 255
  191.     
  192.     set the member of sprite bannerSprite to member oldMem
  193.     set the castLibNum of sprite bannerSprite to oldLib
  194.     updateStage
  195.     
  196.     puppetSprite bannerSprite, FALSE
  197.     
  198.     cursor 0
  199.     
  200.     -- eat the mouse clicks
  201.     clearEvents(me)
  202.     unloadCast (me)
  203.     updateStage
  204.     return 1
  205.   else
  206.     put "there is no sound in the banner property..."
  207.     cursor 0
  208.     unloadCast (me)
  209.     return -1
  210.   end if
  211.   
  212. end
  213.  
  214. -- this just clears out the text for the first time you want to use it
  215.  
  216. on clearBanner me
  217.   put " " into field bannerFieldCast
  218.   set bannerSndCast = 0
  219. end
  220.